home *** CD-ROM | disk | FTP | other *** search
- /*
- edit.H
-
- Data Entry Editor Header File
-
- Copyright (C) 1992, Geoff Friesen B.Sc.
- All rights reserved.
-
- Borland C++ 3.1
- */
-
- /* Common Picture Types */
-
- #define DATEPIC "99/99/9999"
- #define PHONPIC "999-9999"
- #define TIMEPIC "99:99"
-
- #define EDIT_FETCH 0
- #define EDIT_DISP 1
-
- #ifdef __cplusplus
- extern "C"
- {
- #endif
-
- int _editc (char *c, int width, int operation);
- int _editd (char *d, int operation);
- int _editl (char **l, int *d, int operation);
- int _editn (double *n, int width, int dd, int operation);
- int _editp (char *buf, char *pic, int operation);
- void format (char *buf, char *dat, char *pic);
-
- #ifdef __cplusplus
- }
- #endif